home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / hash / Hash_DeleteEntry.c < prev    next >
C/C++ Source or Header  |  1988-07-25  |  1KB  |  59 lines

  1. /* 
  2.  * Hash_DeleteEntry.c --
  3.  *
  4.  *    Source code for the Hash_DeleteEntry library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: Hash_DeleteEntry.c,v 1.2 88/07/25 10:53:35 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <hash.h>
  21. #include <list.h>
  22. #include <stdlib.h>
  23.  
  24. /*
  25.  * Utility procedures defined in other files:
  26.  */
  27.  
  28. extern Hash_Entry *    HashChainSearch();
  29. extern int        Hash();
  30.  
  31. /*
  32.  *---------------------------------------------------------
  33.  *
  34.  * Hash_DeleteEntry --
  35.  *
  36.  *     Delete the given hash table entry and free memory associated with
  37.  *    it.
  38.  *
  39.  * Results:
  40.  *    None.
  41.  *
  42.  * Side Effects:
  43.  *    Hash chain that entry lives in is modified and memory is freed.
  44.  *
  45.  *---------------------------------------------------------
  46.  */
  47.  
  48. void
  49. Hash_DeleteEntry(tablePtr, hashEntryPtr)
  50.     Hash_Table            *tablePtr;
  51.     register    Hash_Entry    *hashEntryPtr;
  52. {
  53.     if (hashEntryPtr != (Hash_Entry *) NULL) {
  54.     List_Remove((List_Links *) hashEntryPtr);
  55.     free((Address) hashEntryPtr);
  56.     tablePtr->numEntries--;
  57.     }
  58. }
  59.